Lender Price API
Pricing a Loan / Common Tasks in Pricing / Filtering by Product and Program
In This Topic
    Filtering by Product and Program
    In This Topic

    The pricing search allows clients to filter results by their Program Name, Product Code, or both.

    Filter by Program Name

    To filter by program name, use the MultiCriteriaSearchModel.filter.programName field in the filter object. The field accepts a string array of program names, and the program names must be an exact match with what is stored in the data.

    Filter by ProductCode

    To filter by the product code, use the MultiCriteriaSearchModel.filter.productCode field in the filter object. The field accepts a string array of product codes, which must be an exact match with what is stored in the data.

     

    Examples

    The following will return results filtered for the program name "30 Year Conv" and the product code "7789".

    Note: the product codes are based upon the lender configuration.

    "filter": {

      "programName": ["30 Year Conv"],

      "productCode": [7789]

    }